home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / c / cenvid9.zip / HELLO.CMM < prev    next >
Text File  |  1994-03-04  |  351b  |  10 lines

  1. //****************************************
  2. //*** Hello.cmm - My first Cmm program ***
  3. //*** ver.1                            ***
  4. //****************************************
  5.  
  6. Count = 1;  /* Count is how many Cmm programs I've written */
  7. printf("Hello world. This is my %dst Cmm program.\n",Count);
  8. printf("Press any key to quit...");
  9. getch();
  10.